Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@rimbu/sorted
Advanced tools
This package contains the implementation for the SortedMap
and SortedSet
types, which form the basis of all Rimbu Sorted collections. The collections use a Comp
instance that is configurable to determine the equality and order of values/objects.
This package exports the following types:
Name | Description |
---|---|
SortedMap<K, V> | a map with entries of key type K and value type V, where keys are sorted with a Comp |
SortedSet<T> | a set of value type T where items are sorted with a Comp |
For complete documentation please visit the Map or Se page in the Rimbu Docs.
Or Try Out Rimbu in CodeSandBox.
All types are exported through @rimbu/core
. It is recommended to use that package.
To install separately:
yarn add @rimbu/sorted
or
npm i @rimbu/sorted
Create a file called rimbu.ts
and add the following:
export * from 'https://deno.land/x/rimbu/sorted/mod.ts';
Or using a pinned version (x.y.z
):
export * from 'https://deno.land/x/rimbu/sorted@x.y.z/mod.ts';
Then import what you need from rimbu.ts
:
import { SortedMap } from './rimbu.ts';
Because Rimbu uses complex types, it's recommended to use the --no-check
flag (your editor should already have checked your code) and to specify a tsconfig.json
file with the settings described below.
Running your script then becomes:
deno run --no-check --config tsconfig.json <your-script>.ts
import { SortedSet } from '@rimbu/sorted';
console.log(SortedSet.of(1, 3, 4, 2, 3).toString());
Feel very welcome to contribute to further improve Rimbu. Please read our Contributing guide.
Made with contributors-img.
Licensed under the MIT License, Copyright © 2020-present Arvid Nicolaas.
See LICENSE for more information.
FAQs
Immutable SortedMap and SortedSet implementations for TypeScript
We found that @rimbu/sorted demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.